.back-button{
    background-color: rgb(75, 113, 238);
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    margin-top: 35px;
    padding: 10px 20px;
    font-size: 16px;
    font-family: 'Momo';
    color: white;

}

.back-button:hover{
    background-color: rgb(75, 113, 238);
    color: white;
    font-size: 20px;
    transition: 0.5s;
}

.QR-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 16px 16px;
}

.result-div{
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    width: 1000px;
    height: max-content;
    display: flex;
    flex-wrap: wrap;
    
}

.quiz-window{
    background-color: white;
    border: 2px solid #ef4444;
    border-radius: 12px;
    padding: 12px;
    margin: 12px;
    width: 280px;
    text-align: center;
    

    .img-result{
        max-width: 280px;
        height: 250px;
        object-fit: scale-down;
        transition: transform 0.3s ease;
        cursor: zoom-in;
    }

    .img-result.zoomed{
        cursor: zoom-out;
    }

    h3{
        font-family: 'Momo';
        color: rgb(31, 28, 29);
    }

    a {
        font-family: 'Maru';
        text-decoration: none;
        color:#93b10c;
    }

    a:hover {
        color: #3b82f6;
        text-decoration: underline;
    }

    p{
        font-family: 'Maru';
        color: rgb(31, 28, 29);
        line-height: 1;
    }

}

.left-images{
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    background-color: #3b82f6;
    max-width: 400px;
    padding: 10px;

    img{
        width: 300px;
        align-items: center;
    }
}

.right-images{
    grid-column: 3 / 4;
    grid-row: 1 / 3;
    background-color: #10b981;
    width: 400px;

    img{
        width: 400px;
        align-items: center;
    }
}